home *** CD-ROM | disk | FTP | other *** search
/ Dynamic Graphics Magazine (Alt) / Dynamic Graphics Magazine (Version B).iso / pc / dgm / postgame.dir / 00137_ChooseUpsoft.ls < prev    next >
Encoding:
Text File  |  1997-03-25  |  607 b   |  27 lines

  1. on mouseDown
  2.   puppetSprite(7, 1)
  3.   set the castNum of sprite 7 to 114
  4.   updateStage()
  5.   puppetSprite(7, 0)
  6.   put field "attempts" + 1 into field "attempts"
  7.   if field "names" = "soft" then
  8.     put field "correct" + 1 into field "correct"
  9.     go("thing3")
  10.     puppetSound("right")
  11.     puppetSprite(11, 1)
  12.     set the castNum of sprite 11 to 116
  13.     updateStage()
  14.     puppetSprite(11, 0)
  15.     delay(2 * 60)
  16.     go("filt4")
  17.   else
  18.     go("thing3")
  19.     puppetSound("wrong")
  20.     puppetSprite(11, 1)
  21.     set the castNum of sprite 11 to 117
  22.     updateStage()
  23.     puppetSprite(11, 0)
  24.     delay(2 * 60)
  25.   end if
  26. end
  27.